if (do_name() != 'Home') : ?>
Reference | open()
endif ?> Syntax
open(path).read()
Description The open() command opens a file specified by the path parameter. The open() command can be used in two ways: open(path).read(), which returns the file's text content as a string, or, alternatively, open(path).readlines(), which returns a list of text lines.
Note:NodeBox looks for files relative to the current .py file. However, if you haven't saved your file first, NodeBox doesn't know where to look. Make sure you save the script first before you run it, otherwise NodeBox won't be able to find your file.
Note:NodeBox looks for files relative to the current .py file. However, if you haven't saved your file first, NodeBox doesn't know where to look. Make sure you save the script first before you run it, otherwise NodeBox won't be able to find your file.
Returns the file's text content, as a string
Tutorial Strings
Example
include("util/comment.php"); ?>
# Prints the contents of sample.txt as a whole txt = open("sample.txt").read() print txt # Prints the contents line per line txt = open("sample.txt").readlines() for line in txt: print line